Carbon


QDCommentProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDCommentProcPtr) (
    SInt16 kind, 
    SInt16 dataSize, 
    Handle dataHandle
);

You would declare your function like this if you were to name it MyQDCommentCallback:

void MyQDCommentCallback (
    SInt16 kind, 
    SInt16 dataSize, 
    Handle dataHandle
);
kind
dataSize
dataHandle

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)